TechDraw Annotation/ru

Other languages:

Вставить заметку

Расположение в меню
TechDraw → Заметки → Вставить заметку
Верстаки
TechDraw
Быстрые клавиши
Нет
Представлено в версии
-
См. также
Текст, Фигура из текста

Описание

The TechDraw Annotation tool adds a text block to a drawing page.

Annotation in the drawing page

Применение

  1. If there are multiple drawing pages in the document: optionally activate the desired page by selecting it in the Tree view.
  2. There are several ways to invoke the tool:
    • Press the Insert Annotation button.
    • Select the TechDraw → Annotations → Insert Annotation option from the menu.
  3. If there are multiple drawing pages in the document and you have not yet activated a page, the Page Chooser dialog box opens:
    1. Select the desired page.
    2. Press the OK button.
  4. A text block containing Default Text appears on the page.
  5. Use the Property editor to change the text.
  6. Optionally drag the Annotation to the different position.

Modifying the annotation through the Property editor

Примечания

Свойства

The Annotation inherits all applicable basic View properties except ДанныеScale. Use the ДанныеTextSize property instead.

Программирование

See also: Autogenerated API documentation and FreeCAD Scripting Basics.

The New Annotation tool can be used in macros and from the Python console by using the following functions:

anno = FreeCAD.ActiveDocument.addObject('TechDraw::DrawViewAnnotation','TestAnno')
anno.Text = ['Different Text']
anno.TextStyle = 'Bold'
rc = page.addView(anno)